home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / test / popen_w_test.c < prev    next >
C/C++ Source or Header  |  1995-09-05  |  130b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5.     FILE *fp = popen("io_test", "w");
  6.     fprintf(fp, "pescestocco\n");
  7.     pclose(fp);
  8.     return(0);
  9. }
  10.